home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 20 / Cream of the Crop 20 (Terry Blount) (1996).iso / program / freeli20.zip / redo3.bat < prev    next >
DOS Batch File  |  1996-07-01  |  413b  |  20 lines

  1. @echo off
  2. echo Splitting .ASX files...
  3. split + < 386lib1.asx  >> $$$.tmp
  4. split + < 386lib2.asx  >> $$$.tmp
  5. split   < freelib3.asx >> $$$.tmp
  6. echo Assembling files...
  7. tasm -m -ml -q -t c_*.asm
  8. if errorlevel 1 goto done
  9. del 386lib.lib
  10. echo Constructing library...
  11. tlib 386lib.lib @$$$.tmp > nul
  12. tlib 386lib.lib,386lib.lst > nul
  13. :done
  14. ctty nul
  15. del c_*.asm
  16. del $$$.tmp
  17. del *.obj
  18. del *.bak
  19. ctty con
  20.